home *** CD-ROM | disk | FTP | other *** search
- //
- // Today.h
- // Copyright (c) 1989, 1990 by Jiro Nakamura
- // All rights reserved
- //
- // Handles the Today window
- //
- // RCS Information
- // Revision Number-> $Revision: 2.3 $
- // Last Revised-> $Date: 90/10/27 17:39:58 $
- //
-
- #import "TextWindow.h"
-
- @interface Today:TextWindow
- {
- int hour, minute;
- BOOL militaryTime, showSeconds, showTime;
- BOOL miniaturized;
- id global; // Set by IB. Accessor to Global object
- }
- - open:sender; // Open and display today window
- - close; // close window
- - save; // Save window (override superClass
- // implementation since we don't need to save
- - update; // Update window
- - timeUpdate:sender;
- - defaultsDidChange: sender;
- - windowDidMiniaturize: sender;
- - windowDidDeminiaturize: sender;
- - setGlobal: anObject; // For IB
- @end
-